home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’93 / Unca Fenster / Source / FinderToFSSpec.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-17  |  626 b   |  29 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. struct FinderRec;
  4. typedef struct FinderRec {
  5.     Byte            ffill1[4];
  6.     long            fModDate;
  7.     Byte            ffill2[2];
  8.     struct FinderRec        **fParentH;
  9.     Byte            ffill3[22];
  10.     long            fSelectInfo;
  11.     long            fFinder71extra;
  12.     struct FinderRec        **fMainDirH;
  13.     long            fDirID;
  14.     short            fvRefNum;
  15.     Byte            ffill4[16];
  16.     short            fFlags;
  17.     Byte            ffill5[2];
  18.     Byte            fFlAttrib;
  19.     Byte            fACUser;
  20.     Byte            ffill6[4];
  21.     OSType            fCreator;
  22.     OSType            fType;
  23.     Byte            ffill7[102];
  24.     struct FinderRec        **fDesktopH;
  25. }FinderRec, *FinderRecP, **FinderHandle;
  26.  
  27. void FindName(FinderHandle fh, StringPtr name);
  28. void FinderHandleToFSSpec(FinderHandle fh, FSSpecPtr f);
  29.